home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 32 / Mac Magazin and MacEasy Magazine CD - Issue 32.iso / Multimedia / MIDI / DX7 Librarian 1.2.0 / Sample Scripts / 17 Copy All param to New Window < prev    next >
Text File  |  1994-01-22  |  398b  |  15 lines

  1. tell application "DX7 Librarian"
  2.     activate -- if needed
  3.     open file "Sample"
  4.     New Window 0
  5.     repeat with i from 0 to 154
  6.         set x to Parameter i of Window "Sample"
  7.         set Parameter i of Window 1 to x
  8.     end repeat
  9.     set x to Parameter 156 of Window "Sample"
  10.     set Parameter 156 of Window 1 to x
  11.     set x to Text 1 of Window "Sample"
  12.     set Text 1 of Window 1 to x
  13.     save Window 1 in file "Sample Copy"
  14. end tell
  15.